This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal


Dec 16, 2014, 12:50 PM
2 Posts

Sending mail through SMTP server

  • Category: Mail
  • Platform: All Platforms
  • Release: 9.0.1
  • Role: Developer
  • Tags:
  • Replies: 4

How can i send lotus notes email through SMTP server to Microsoft outlook without installing lotus notes in users machine ?

Dec 16, 2014, 3:39 PM
6 Posts
Sending mail through SMTP server

You can use any mail client with Domino SMTP server

Dec 17, 2014, 5:37 AM
19 Posts
SMTP Mail via Domino
I suppose you are looking at sending a SMTP email via a domino server to a user who uses Microsoft Outlook to read emails. Is that right?   Yes as stated by Victor you can use any SMTP\POP3\IMAP client to connect to a domino server and send out mails.
Dec 17, 2014, 8:48 AM
2 Posts
Sending mail through SMTP server

Thanks to Victor and Girish, i got the point. Can you please share the code for lotus script for sending email to outlook? One more question i want to ask is that how can i change the code for the doclink so that it can be open in outlook.

Many thanks

Dec 17, 2014, 11:50 AM
6 Posts
Sending mail with doclink

Try this code (send doclink to the current doc):

    Dim s As NotesSession    
    Dim db As NotesDatabase    
    Dim newsletter As NotesDocument, currentnote As NotesDocument    
    Dim workspace As New NotesUIWorkspace
    Dim uidoc As NotesUIDocument
    
    Set s = New NotesSession
    Set db = s.CurrentDatabase
    
    Set uidoc = workspace.CurrentDocument
    Set currentnote = uidoc.Document
    
    Set newsletter = New Notesdocument(db)
    Set rtitem = New NotesRichTextItem( newsletter, "Body")
    newsletter.Form = "Memo"
    newsletter.SendTo =  "name@domain.com" 'Enter your email here
    newsletter.Subject = "Documents you requested from " & db.Title
    'Create the body of the mail memo with doclinks
        
    Call rtitem.AppendDocLink ( currentnote, db.Title)
    
    newsletter.Send(True)


This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal